home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / Sample Code / PartMaker 4.4 / PartMaker Documents / Script Runner• / Script Runner•.rsrc / dFRK_5066 < prev    next >
Encoding:
Text File  |  1995-12-12  |  773 b   |  40 lines

  1. /*
  2.     File:        ScriptRunnerUtils.h
  3.  
  4.     Contains:    ScriptRunner utility functions & classes
  5.  
  6.     Written by:    Steve Smith
  7.  
  8.     Copyright:    © 1994-95 by Apple Computer, Inc., all rights reserved.
  9. */
  10.  
  11.  
  12. #ifndef _SCRIPTRUNNERUTILS_
  13. #define _SCRIPTRUNNERUTILS_
  14.  
  15. // --- OpenDoc Includes ---
  16.  
  17. #ifndef _ODTYPES_
  18. #include <ODTypes.h>
  19. #endif
  20.  
  21. // --- Macintosh Includes ---
  22.  
  23. #ifndef __TYPES__
  24. #include <Types.h>
  25. #endif
  26.  
  27.  
  28. //------------------------------------------------------------------------------
  29. // Function Prototypes
  30. //------------------------------------------------------------------------------
  31.  
  32. void        FixedToIntRect(ODRect& fixedRect, Rect& intRect);
  33. void        IntToFixedRect(Rect& intRect, ODRect& fixedRect);
  34. void         InvalidateRect( Environment* ev, ODFrame* frame, Rect bRect );
  35.  
  36.  
  37. #endif
  38.  
  39.  
  40.